home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / cst_att_string.e < prev    next >
Text File  |  1998-12-22  |  2KB  |  71 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class CST_ATT_STRING
  17.    
  18. inherit CST_ATT;
  19.    
  20. creation make
  21.  
  22. feature {NONE}
  23.  
  24.    first_value: MANIFEST_STRING;
  25.  
  26.    remainder: FIXED_ARRAY[MANIFEST_STRING];
  27.    
  28. feature {NONE}
  29.  
  30.    make(n: like names; t: like result_type; v: like value) is
  31.       require
  32.      n /= Void;
  33.      t /= Void;
  34.      v /= Void
  35.       local
  36.      i: INTEGER;
  37.       do
  38.      make_e_feature(n);
  39.      result_type := t;
  40.      first_value := v;
  41.      i := names.count;
  42.      if i > 1 then
  43.         from 
  44.            i := i - 1;
  45.            !!remainder.make(i);
  46.         until
  47.            i = 0
  48.         loop
  49.            i := i - 1;
  50.            remainder.put(v.twin,i);
  51.         end;
  52.      end;
  53.       ensure
  54.      names = n;
  55.      result_type = t;
  56.       end;
  57.  
  58. feature 
  59.    
  60.    value(i: INTEGER): MANIFEST_STRING is
  61.       do
  62.      if i = 1 then
  63.         Result := first_value;
  64.      else
  65.         Result := remainder.item(i - 2);
  66.      end;
  67.       end;
  68.    
  69. end -- CST_ATT_STRING
  70.  
  71.